crypto/tls.certificateRequestMsg.supportedSignatureAlgorithms (field)

12 uses

	crypto/tls (current package)
		handshake_client.go#L608: 			signatureAlgorithm, err := selectSignatureScheme(c.vers, chainToSend, certReq.supportedSignatureAlgorithms)
		handshake_client.go#L947: 	cri.SignatureSchemes = make([]SignatureScheme, 0, len(certReq.supportedSignatureAlgorithms))
		handshake_client.go#L948: 	for _, sigScheme := range certReq.supportedSignatureAlgorithms {
		handshake_messages.go#L1573: 	supportedSignatureAlgorithms []SignatureScheme
		handshake_messages.go#L1591: 		length += 2 + 2*len(m.supportedSignatureAlgorithms)
		handshake_messages.go#L1606: 		n := len(m.supportedSignatureAlgorithms) * 2
		handshake_messages.go#L1610: 		for _, sigAlgo := range m.supportedSignatureAlgorithms {
		handshake_messages.go#L1670: 		m.supportedSignatureAlgorithms = make([]SignatureScheme, numSigAlgos)
		handshake_messages.go#L1671: 		for i := range m.supportedSignatureAlgorithms {
		handshake_messages.go#L1672: 			m.supportedSignatureAlgorithms[i] = SignatureScheme(data[0])<<8 | SignatureScheme(data[1])
		handshake_server.go#L544: 			certReq.supportedSignatureAlgorithms = supportedSignatureAlgorithms
		handshake_server.go#L648: 			if !isSupportedSignatureAlgorithm(certVerify.signatureAlgorithm, certReq.supportedSignatureAlgorithms) {